home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / ccindex.cpp < prev    next >
C/C++ Source or Header  |  1999-03-17  |  13KB  |  427 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- // 
  5. // C++ Source Code File Name: ccindex.cpp 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer   
  8. // File Creation Date: 09/17/1997  
  9. // Date Last Modified: 03/17/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ------------- Program Description and Details ------------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. The CCIndex class is a persistent string VBD database used
  32. to store various name and address information in a 3" X 5"
  33. index card file format. All the string members can grow and
  34. shrink as needed.
  35. */
  36. // ----------------------------------------------------------- //   
  37. #include "ccindex.h"
  38. #include "strutil.h"
  39.  
  40. unsigned CCIndex::ObjectLength()
  41. {
  42.   unsigned len = StringFileLength(card_name) + \
  43.     StringFileLength(company_name) + \
  44.     StringFileLength(department_name) + \
  45.     StringFileLength(phone_number) + \
  46.     StringFileLength(fax_number)  + \
  47.     StringFileLength(cell_number)  + \
  48.     StringFileLength(beeper_number)  + \
  49.     StringFileLength(email_address)  + \
  50.     StringFileLength(street_address)  + \
  51.     StringFileLength(internet_urls)  + \
  52.     StringFileLength(comments_block);
  53.  
  54.   return len;
  55. }
  56.  
  57. FAU CCIndex::Write()
  58. {
  59.   ObjectHeader oh;
  60.  
  61.   FAU addr = pod->OpenDatabase()->Alloc(ObjectLength() + sizeof(ObjectHeader));
  62.  
  63.   if(!addr) return 0;
  64.   oh.ClassID = GetClassID();
  65.   oh.ObjectID = addr;
  66.  
  67.   WriteObjHeader(oh);
  68.   WriteString(card_name);
  69.   WriteString(company_name);
  70.   WriteString(department_name);
  71.   WriteString(phone_number);
  72.   WriteString(fax_number);
  73.   WriteString(cell_number);
  74.   WriteString(beeper_number);
  75.   WriteString(email_address);
  76.   WriteString(street_address);
  77.   WriteString(internet_urls);
  78.   WriteString(comments_block);
  79.   objectaddress = addr;  
  80.  
  81.   // Add the entry to the Index file
  82.   if (UsingIndex()) {
  83.     EntryKey key(card_name.c_str(), oh.ObjectID, oh.ClassID);
  84.     AddKey(key);
  85.   }
  86.   return addr;
  87. }
  88.  
  89. void CCIndex::Read(FAU Address)
  90. {
  91.   ObjectHeader oh;
  92.  
  93.   ReadObjHeader(oh, Address);
  94.   if(oh.ClassID != GetClassID()) return; // Incorrect object type
  95.  
  96.   ReadString(card_name);
  97.   ReadString(company_name);
  98.   ReadString(department_name);
  99.   ReadString(phone_number);
  100.   ReadString(fax_number);
  101.   ReadString(cell_number);
  102.   ReadString(beeper_number);
  103.   ReadString(email_address);
  104.   ReadString(street_address);
  105.   ReadString(internet_urls);
  106.   ReadString(comments_block);
  107.   objectaddress = oh.ObjectID;
  108. }
  109.  
  110. FAU CCIndex::Find()
  111. // Find object by seaching the database for its primary data members
  112. {
  113.   CCIndex ccindex;
  114.  
  115.   ccindex.card_name = this->card_name; 
  116.   ccindex.company_name = this->company_name; 
  117.   ccindex.department_name = this->department_name; 
  118.   ccindex.phone_number = this->phone_number;
  119.   ccindex.fax_number = this->fax_number;
  120.   ccindex.cell_number = this->cell_number;
  121.   ccindex.beeper_number = this->beeper_number;
  122.   ccindex.email_address = this->email_address;
  123.   ccindex.street_address = this->street_address;
  124.   ccindex.internet_urls = this->internet_urls;
  125.   ccindex.comments_block = this->comments_block;
  126.  
  127.   int rv; // Return value
  128.  
  129.   // Search the index file for this entry
  130.   if(UsingIndex()) {
  131.     EntryKey e(this->card_name.c_str());
  132.     rv = FindKey(e);
  133.     if(rv) { // Found the object in the index file
  134.       Read(e.object_address);
  135.       objectaddress = e.object_address;
  136.       return e.object_address;
  137.     }
  138.     else
  139.       return 0;
  140.   }
  141.  
  142.   FAU oa;          // Object Address
  143.   VBHeader vb;     // Variable Block Header
  144.   ObjectHeader oh; // Object Header
  145.   
  146.   FAU vbdfileEOF = pod->OpenDatabase()->GetEOF();
  147.   FAU addr = 0;
  148.   addr = pod->OpenDatabase()->FindFirstVB(addr); // Search the entire file
  149.  
  150.   if(addr == 0) return 0; // No variable blocks found in file
  151.   
  152.   while(1) { 
  153.     if(addr >= vbdfileEOF) break;
  154.     pod->OpenDatabase()->Read(&vb, sizeof(VBHeader), addr);
  155.     if(vb.CkWord == CheckWord) {
  156.       if((__SBYTE__)vb.Status == NormalVB) {
  157.     oa = addr + sizeof(VBHeader);
  158.     ReadObjHeader(oh, oa);
  159.     if(oh.ClassID == GetClassID()) { 
  160.       Read(oa);
  161.       if(card_name == ccindex.card_name) {
  162.         objectaddress = oa;
  163.         return oa; // Found unique data member
  164.       }
  165.     }
  166.       }
  167.       addr = addr + vb.Length; // Goto the next variable block
  168.     }
  169.     else {
  170.       addr = pod->OpenDatabase()->VBSearch(addr); 
  171.       if(!addr) break;
  172.     }
  173.   }
  174.  
  175.   // Reset the objects data
  176.   this->card_name = ccindex.card_name;
  177.   this->company_name = ccindex.company_name;
  178.   this->department_name = ccindex.department_name;
  179.   this->phone_number = ccindex.phone_number;
  180.   this->fax_number = ccindex.fax_number;
  181.   this->cell_number = ccindex.cell_number;
  182.   this->beeper_number = ccindex.beeper_number;
  183.   this->email_address = ccindex.email_address;
  184.   this->street_address = ccindex.street_address;
  185.   this->internet_urls = ccindex.internet_urls;
  186.   this->comments_block = ccindex.comments_block;
  187.   
  188.   return 0; // Could not find 
  189. }
  190.  
  191. void CCIndex::Copy(const CCIndex &ob)
  192. {
  193.   card_name = ob.card_name;
  194.   company_name = ob.company_name;
  195.   department_name = ob.department_name;
  196.   phone_number = ob.phone_number;
  197.   fax_number = ob.fax_number;
  198.   cell_number = ob.cell_number;
  199.   beeper_number = ob.beeper_number;
  200.   email_address = ob.email_address;
  201.   street_address = ob.street_address;
  202.   internet_urls = ob.internet_urls;
  203.   comments_block = ob.comments_block;
  204.   objectaddress = ob.objectaddress;
  205. }
  206.  
  207. int CCIndex::FullCompare(const CCIndex &ob)
  208. {
  209.   if(card_name != ob.card_name) return 0;
  210.   if(company_name != ob.company_name) return 0;
  211.   if(department_name != ob.department_name) return 0;
  212.   if(phone_number != ob.phone_number) return 0;
  213.   if(fax_number != ob.fax_number) return 0;
  214.   if(cell_number != ob.cell_number) return 0;
  215.   if(beeper_number != ob.beeper_number) return 0;
  216.   if(email_address != ob.email_address) return 0;
  217.   if(street_address != ob.street_address) return 0;
  218.   if(internet_urls != ob.internet_urls) return 0;
  219.   if(comments_block != ob.comments_block) return 0;
  220.   return 1;
  221. }
  222.  
  223. int operator==(const CCIndex &a, const CCIndex &b)
  224. {
  225.   return CaseICmp(a.GetCardName(), b.GetCardName()) == 0;
  226. }
  227.  
  228. int operator!=(const CCIndex &a, const CCIndex &b)
  229. {
  230.   return CaseICmp(a.GetCardName(), b.GetCardName()) != 0;
  231. }
  232.  
  233. int operator>(const CCIndex &a, const CCIndex &b)
  234. {
  235.   return CaseICmp(a.GetCardName(), b.GetCardName()) > 0;
  236. }
  237.  
  238. int operator>=(const CCIndex &a, const CCIndex &b)
  239. {
  240.   return CaseICmp(a.GetCardName(), b.GetCardName()) >= 0;
  241. }
  242.   
  243. int operator<(const CCIndex &a, const CCIndex &b)
  244. {
  245.   return CaseICmp(a.GetCardName(), b.GetCardName()) < 0;
  246. }
  247.   
  248. int operator<=(const CCIndex &a, const CCIndex &b)
  249. {
  250.   return CaseICmp(a.GetCardName(), b.GetCardName()) <= 0;
  251. }
  252.  
  253. FAU CCIndex::Delete()
  254. {
  255.   if(UsingIndex()) {
  256.     EntryKey e(this->card_name.c_str());
  257.     int rv = FindKey(e);
  258.     if(rv) {  // Found the object in the index file
  259.       FAU addr = e.object_address;
  260.       DeleteObject(e.object_address); // Delete from the